home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 36 / vfos_dv.zip / VFOS_DV.ASM < prev    next >
Assembly Source File  |  1988-10-30  |  3KB  |  74 lines

  1.         page ,132
  2.         title VFOSSIL driver - VFOS_IBM by Bob Hartman (1:132/101)
  3.         subttl Miscellaneous data and routines
  4.  
  5. ; VFOS_IBM VFOSSIL driver by Bob Hartman  (SysOp of 1:132/101).
  6. ; Copyright 1988 by Spark Software.  ALL RIGHTS RESERVED.
  7. ;
  8. ; This program source code is being released with the following provisions:
  9. ;
  10. ; 1.  You are  free to make  changes to this source  code for use on your own
  11. ; machine,  however,  altered source files may not be distributed without the 
  12. ; consent of Spark Software.
  13. ;
  14. ; 2.  You may distribute "patches"  or  "diff" files for any changes that you
  15. ; have made, provided that the "patch" or "diff" files are also sent to Spark
  16. ; Software for inclusion in future releases of the entire package.   A "diff"
  17. ; file for the source archives may also contain a compiled version,  provided
  18. ; it is  clearly marked as not  being created  from the original source code.
  19. ; No other  executable  versions may be  distributed without  the  consent of
  20. ; Spark Software.
  21. ;
  22. ; 3.  You are free to include portions of this source code in any program you
  23. ; develop, providing:  a) Credit is given to Spark Software for any code that
  24. ; may is used, and  b) The resulting program is free to anyone wanting to use
  25. ; it, including commercial and government users.
  26. ;
  27. ; 4.  There is  NO  technical support  available for dealing with this source
  28. ; code, or the accompanying executable files.  This source  code  is provided
  29. ; as is, with no warranty expressed or implied (I hate legalease).   In other
  30. ; words, if you don't know what to do with it,  don't use it,  and if you are
  31. ; brave enough to use it, you're on your own.
  32. ;
  33. ; Spark Software may be contacted by modem at (603) 888-8179 (node 1:132/101)
  34. ; on the public FidoNet network, or at the address given above.
  35. ;
  36. ; Failure to abide by this simple license agreement will cause your concience
  37. ; to haunt you for the rest of your life  (not to mention that possibility of
  38. ; a big lawsuit, and we could really use the money!).
  39. ;
  40.  
  41. ;
  42. ; The source code is much too bulky to handle as a single unit (at least for
  43. ; me it was), so listed below are all of the modules which are simply pulled
  44. ; in at assembly time to create the final product.  If you prefer to program
  45. ; one large file,  simply append all of the files together and you will have
  46. ; one extremely large source file that can be used.
  47. ;
  48. ;* Modifications for DESQview support by David Page
  49. ;* The original does well unless the Fossil is installed BEFORE
  50. ;* DESQview, in which case the second VFOSSIL user will steal
  51. ;* the screen from the first. This version avoids that by using
  52. ;* Shadow calls prolifically, and is therefore slightly slower
  53. ;
  54.  
  55.         .XLIST
  56. IF1
  57.         %OUT VFOS_IBM VFOSSIL driver (modified for DV)
  58. ENDIF
  59.         .LIST
  60.         page
  61.  
  62.         include equates.inc
  63.         include macros.inc
  64.         include startup.inc
  65.         include data.inc
  66.         include publics.inc
  67.         include vio_dv.inc
  68.         include tables.inc
  69.         include int14.inc
  70.         include install.inc
  71.  
  72.         end
  73.  
  74.